@font-face {
    font-family: poppins;
    src: url('../fonts/Poppins-Regular.ttf');

    font-family: funkydori;
    src: url('../fonts/Funkydori.otf');
}

body {
    margin: 0px;
    background-color: #fffdfa;
}

h1 {
    font-family: funkydori;
    letter-spacing: 3px;
    font-size: 50px;
    margin-bottom: -5px;
    margin-top: -10px;
}

h2 {
    font-family: poppins;
}

h3 {
    font-family: poppins;
    font-size: 20px;
}

h4 {
    font-family: poppins;
    font-weight: 1000;
    font-style: italic;
    font-size: 29px;
    text-decoration: underline;
}

p {
    font-family: poppins;
    line-height: 20px;
}










/* GRID Container */
* {
    box-sizing: border-box;
  }





  /* graphicdesignmaris */
#logoname {
    margin-left: 150px;
    display: flex;
    text-align: center;
   }
 
/* Menu */
.navbar {
    margin-left: 150px;
    display: flex;
    background-color: #fffdfa;}
 
/* Menu Text */
.navbar a {
    font-family: poppins;
    font-style: italic;
    font-size: 20px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;}
 
/* Menu: Hover */
.navbar a:hover {
     color: #9B9BFD;}

 
 
 
 
 
 
 
 
 
 /* GRID Items */
 /* .grid { 
     display: grid;
     grid-template-columns: 2fr 1fr;} */
 
#persoonlijkcard, #werkcard {
    margin: 50px;
    grid-column-start: 1;
    grid-column-end: 4;
    min-height: 272px;}
 
#persoonlijkcard p, #werkcard p {
    grid-column-start: 1;
    grid-column-end: 4;
    margin-bottom: 20px;}
 
 
     
 
/* Kaartjes */
#cardone { 
    background-image: linear-gradient(#c2c2ff, #9B9BFD);
    box-shadow: 5px 5px 20px rgb(192, 192, 192);
    border-radius: 25px;
    margin: 10px;
    padding: 50px;
    float: left;
    width: 48%;
    min-height: 272px;}
 
 #cardtwo { 
    background-image: linear-gradient(#c2c2ff, #9B9BFD);
    box-shadow: 5px 5px 20px rgb(192, 192, 192);
    border-radius: 25px;
    margin: 10px;
    padding: 50px;
    float: left;
    width: 48%;
    min-height: 272px;}

#cardthree { 
    color: #ffffff;
    background-image: linear-gradient(#363647, #000000);
    box-shadow: 5px 5px 20px rgb(192, 192, 192);
    border-radius: 25px;
    margin: 10px;
    padding: 50px;
    float: left;
    width: 48%;
    min-height: 272px;}
    
#cardfour { 
    color: #ffffff;
    background-image: linear-gradient(#363647, #000000);
    box-shadow: 5px 5px 20px rgb(192, 192, 192);
    border-radius: 25px;
    margin: 10px;
    margin-bottom: 100px;
    padding: 50px;
    float: left;
    width: 48%;
    min-height: 272px;}







.buttoncard {
    text-align: center;}
 
#downloadbutton {
    cursor: pointer;
    border-radius: 10px;
    border: none;
    box-shadow: 2px 2px 6px #e6e6e6;
    background-color: #9B9BFD;
    font-family: poppins;
    font-style: italic;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    padding: 14px 20px;
    margin-bottom: 100px;
    min-height: 65px;}

#downloadbutton:hover {
    background-color: #9B9BFD;
    border: 2px #9B9BFD;
    box-shadow: inset 2px 2px 5px #5b5d81;
    color: #ffffff;}
 
 
 
 
 
 
 
 
 
 
 /* Footer */
 .footerbar {
     display: flex;
     background-color: #000000;
     /* margin-top: -10px; */
 }
 
 /* Footer Text */
 .footerbar a {
     margin: 10px;
     font-family: poppins;
     font-style: italic;
     font-size: 13px;
     font-weight: 700;
     color: rgb(255, 255, 255);
     padding: 14px 20px;
     text-decoration: none;
     text-align: center;
   }
 
    /* Menu: Hover */
 .footerbar a:hover {
     color: #9B9BFD;
   }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 /* Use a media query to add a break point at 800px: */
 @media screen and (max-width: 800px) {
     #home, #cardone, #cardtwo, #cardthree, #cardfour, .navbar, #logoname, .footerbar, #downloadbutton  {
       width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
       flex-direction: column;
     }
     #logoname {
         margin: 0;
     }
 
     .navbar {
         margin: 0;
     }
 
     #downloadbutton {
         max-width: 150px;
         max-height: 50px;
     }
     
 }
 
 @media screen and (max-width: 1120px) {
     #cardone, #cardtwo, #cardthree, #cardfour, #downloadbutton
     body {
       /* background-color: #fffdfa; */
       width: 100%;
     }
     
   }
 
 @media screen and (min-width: 800px) {
     body {
       background-color: #fffdfa;
     }
     
     #downloadbutton {
        max-height: 10px;
     }
   }